-
Notifications
You must be signed in to change notification settings - Fork 7.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ethernet: Add support stm32n6570_dk #87562
base: main
Are you sure you want to change the base?
Ethernet: Add support stm32n6570_dk #87562
Conversation
264dc7a
to
091627e
Compare
instead of using and extending the internal |
the |
started something like I described there: #87593 |
ee39d6c
to
6d119f4
Compare
6d119f4
to
3656cfe
Compare
3238878
to
3197859
Compare
3197859
to
a016e40
Compare
@marwaiehm-st please rebase to current main, now that #87593 is merged |
Add the Ethernet MAC and MDIO nodes in the device tree. Add Kconfig for Ethernet Support. Signed-off-by: IBEN EL HADJ MESSAOUD Marwa <marwa.ibenelhadjmessaoud-ext@st.com>
a016e40
to
51bdac7
Compare
drivers/ethernet/eth_stm32_hal.c
Outdated
#define STM32_ETH_PHY_MODE(node_id) \ | ||
((DT_ENUM_HAS_VALUE(node_id, phy_connection_type, mii) ? HAL_ETH_MII_MODE : \ | ||
(DT_ENUM_HAS_VALUE(node_id, phy_connection_type, rmii) ? HAL_ETH_RMII_MODE : \ | ||
(DT_ENUM_HAS_VALUE(node_id, phy_connection_type, gmii) ? HAL_ETH_GMII_MODE : \ | ||
(DT_ENUM_HAS_VALUE(node_id, phy_connection_type, rgmii) ? HAL_ETH_RGMII_MODE : \ | ||
HAL_ETH_RMII_MODE))))) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't we use ETH_MEDIA_INTERFACE_FOO
values now?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We used ETH_MEDIA_INTERFACE_FOO to support the api v1, but here we have only stm32n6.
We can add the definition of ETH_MEDIA_INTERFACE_FOO
for RGMII and GMII, if it makes the code compatible
#define ETH_MEDIA_INTERFACE_RGMII HAL_ETH_RGMII_MODE
#define ETH_MEDIA_INTERFACE_GMII HAL_ETH_GMII_MODE
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That would be cleaner indeed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Or we remove the ETH_MEDIA_INTERFACE_FOO
, but we should be able to use only one macro version.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can remove the definition of ETH_MEDIA_INTERFACE_FOO
and using directly HAL_ETH_XMII
for API V2, but for API V1 we can only use ETH_MEDIA_INTERFACE_FOO
.
In case of removing the definition "ETH_MEDIA_INTERFACE_FOO", we should add definition for HAL_ETH_XMII_MODE to support API v1.
#if !defined(CONFIG_ETH_STM32_HAL_API_V2)
#define HAL_ETH_MII_MODE ETH_MEDIA_INTERFACE_MII
#define HAL_ETH_RMII_MODE ETH_MEDIA_INTERFACE_RMII
#endif
#define STM32_ETH_PHY_MODE(node_id) \
(DT_ENUM_HAS_VALUE(node_id, phy_connection_type, mii) ? \
HAL_ETH_MII_MODE : HAL_ETH_RMII_MODE)
drivers/ethernet/eth_stm32_hal.c
Outdated
@@ -1477,7 +1493,9 @@ static const struct eth_stm32_hal_dev_cfg eth0_config = { | |||
}; | |||
|
|||
BUILD_ASSERT(DT_ENUM_HAS_VALUE(MAC_NODE, phy_connection_type, mii) || | |||
DT_ENUM_HAS_VALUE(MAC_NODE, phy_connection_type, rmii), | |||
DT_ENUM_HAS_VALUE(MAC_NODE, phy_connection_type, rmii) || | |||
DT_ENUM_HAS_VALUE(MAC_NODE, phy_connection_type, rgmii) || |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe use a IF_ENABLED(DT_HAS_COMPAT_STATUS_OKAY(st_stm32n6_ethernet),(check for rgmii and gmii))
, to only allow gigabit connection types on supported soc
drivers/ethernet/eth_stm32_hal.c
Outdated
#if DT_HAS_COMPAT_STATUS_OKAY(st_stm32n6_ethernet) | ||
PHY_LINK_IS_SPEED_1000M(state->speed) ? ETH_SPEED_1000M : | ||
#endif |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can IF_ENABLED(DT_HAS_COMPAT_STATUS_OKAY(st_stm32n6_ethernet)
could also be used here ?
- Added macros `STM32_ETH_PHY_MODE` to determine the PHY mode (RGMII, GMII, RMII, and MII) from the `phy_connection_type` property in the device tree. - Removed previous definitions for ETH_MEDIA_INTERFACE_MII and ETH_MEDIA_INTERFACE_RMII. - Updated STM32_ETH_PHY_MODE macro to use ETH_MII_MODE and ETH_RMII_MODE. Signed-off-by: IBEN EL HADJ MESSAOUD Marwa <marwa.ibenelhadjmessaoud-ext@st.com>
09b9496
to
44f863d
Compare
Add ethernet node of stm32n6570_dk
Integrate GRMII and RMII interfaces
Based on this PR: #87593